crypto/tls.certificateRequestMsg.certificateTypes (field)
9 uses
crypto/tls (current package)
handshake_client.go#L1038: for _, certType := range certReq.certificateTypes {
handshake_messages.go#L1651: certificateTypes []byte
handshake_messages.go#L1662: length := 1 + len(m.certificateTypes) + 2
handshake_messages.go#L1679: x[4] = uint8(len(m.certificateTypes))
handshake_messages.go#L1681: copy(x[5:], m.certificateTypes)
handshake_messages.go#L1682: y := x[5+len(m.certificateTypes):]
handshake_messages.go#L1729: m.certificateTypes = make([]byte, numCertTypes)
handshake_messages.go#L1730: if copy(m.certificateTypes, data) != numCertTypes {
handshake_server.go#L589: certReq.certificateTypes = []byte{
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |